home *** CD-ROM | disk | FTP | other *** search
/ NeXT Education Software Sampler 1992 Fall / NeXT Education Software Sampler 1992 Fall.iso / Programming / c-runtime / tests / RCS / SubClass3.h,v < prev    next >
Encoding:
Text File  |  1992-08-18  |  474 b   |  48 lines

  1. head    1.1;
  2. access;
  3. symbols;
  4. locks
  5.     dglattin:1.1; strict;
  6. comment    @ * @;
  7.  
  8.  
  9. 1.1
  10. date    92.08.18.04.58.04;    author dglattin;    state Exp;
  11. branches;
  12. next    ;
  13.  
  14.  
  15. desc
  16. @test code.
  17. @
  18.  
  19.  
  20. 1.1
  21. log
  22. @Initial revision
  23. @
  24. text
  25. @#ifndef __SUBCLASS3_H
  26. #define __SUBCLASS3_H
  27.  
  28. #include  <SubClass2.h>
  29.  
  30. @@interface SubClass3 : SubClass2 {
  31.  
  32.   char  smart[ 256 ];
  33. }
  34.  
  35. +initialize;
  36. + new;
  37. -print:( const char* )aMsg;
  38. - ( int )additionalMethod;
  39. - storeOn:( int )aFd;
  40. - readFrom:( int )aFd;
  41.  
  42. @@end
  43.  
  44.  
  45. #endif
  46.  
  47. @
  48.